home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / SourceCode / Palettes / TTools / TToolsPalette / TToolsPalette.h < prev    next >
Text File  |  1995-06-12  |  1KB  |  37 lines

  1. /* TToolsPalette.h
  2.  * Written By:  Thomas Burkholder
  3.  *
  4.  * You may freely copy, distribute, and reuse the code in this example.
  5.  * NeXT disclaims any warranty of any kind, expressed or  implied, as to its
  6.  * fitness for any particular use.
  7.  */
  8.  
  9. #import <appkit/appkit.h>
  10.  
  11. #import <apps/InterfaceBuilder.h>
  12.  
  13. //  Master palette class, associates objects with their cover views.
  14. @interface TToolsPalette:IBPalette
  15. {
  16.     id switchView;        //actual SwitchView instance
  17.     id switchViewCover;    //cover view that is dragged
  18.     id timerObject;        //actual timer instance
  19.     id timerView;        //cover view that is dragged
  20.     id rankerView;        //actual Ranker instance
  21.     id rankerCover;        //cover view that is dragged
  22.     id listObject;        //actual List instance
  23.     id listCover;        //cover view that is dragged
  24.     id tBinderObject;        //actual TBinder instance
  25.     id tBinderCover;        //cover view that is dragged
  26.     id sortedList;        //actual SortedList instance
  27.     id sortedListCover;    //cover view that is dragged
  28.     id classAgent;        //actual ClassAgent instance
  29.     id classAgentCover;    //cover view that is dragged
  30.     id stringAgent;        //actual StringAgent instance
  31.     id stringAgentCover;    //cover view that is dragged
  32. }
  33.  
  34. - finishInstantiate;
  35.  
  36. @end
  37.